KeysOrderedAcrossPartitions Property

Task Parallel System.Threading

Gets whether elements in an earlier partition always come before elements in a later partition.

Namespace:  System.Collections.Concurrent
Assembly:  System.Threading (in System.Threading.dll)

Syntax

Visual Basic (Declaration)
Public Property KeysOrderedAcrossPartitions As Boolean
C#
public bool KeysOrderedAcrossPartitions { get; private set; }

Remarks

If KeysOrderedAcrossPartitions returns true, each element in partition 0 has a smaller order key than any element in partition 1, each element in partition 1 has a smaller order key than any element in partition 2, and so on.

See Also